home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et3_0-a1.lha / et3 / src / PROGENV / CollTblView.h < prev    next >
C/C++ Source or Header  |  1992-05-13  |  658b  |  32 lines

  1. #ifndef CollTblView_First
  2. #ifdef __GNUG__
  3. //pragma once
  4. #pragma interface
  5. #endif
  6. #define CollTblView_First
  7.  
  8. #include "CollView.h"
  9.  
  10. //---- PeCollTableView ------------------------------------------------------------
  11.  
  12. class PeCollTableView: public CollectionView {
  13. protected:
  14.     class PeObjectItem *AsObjectItem(Object *op);
  15. public:
  16.     MetaDef(PeCollTableView);
  17.     PeCollTableView(int cols= 1);
  18.     void DoSelect(Rectangle r, int clicks);
  19.     void ShowCollection(class Collection*);
  20. };
  21.  
  22. class PeDictionaryView: public PeCollTableView {
  23. public:
  24.     MetaDef(PeDictionaryView);
  25.     PeDictionaryView();
  26.     void ShowDictionary(class Dictionary *);
  27. };
  28.  
  29.  
  30. #endif
  31.  
  32.